home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / etc / NetworkManager / dispatcher.d / 60-vidalia.sh < prev   
Encoding:
Linux/UNIX/POSIX Shell Script  |  2013-01-06  |  471 b   |  19 lines

  1. #! /bin/sh
  2.  
  3. # Run only when the interface is not "lo":
  4. if [ $1 = "lo" ]; then
  5.    exit 0
  6. fi
  7.  
  8. # Run whenever an interface gets "up", not otherwise:
  9. if [ $2 != "up" ]; then
  10.    exit 0
  11. fi
  12.  
  13. # Restart Vidalia because it does not automatically reconnect to the new
  14. # Tor instance. Use kill+start as:
  15. # - X-GNOME-AutoRestart does not exist in Lenny's Gnome
  16. # - we do not start Vidalia automatically anymore and *this* is the time
  17. #   when it is supposed to start.
  18. restart-vidalia
  19.